-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I have winforms project
app.config:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
For example, I have this line:
<forms loginUrl="/redirecttosignin.aspx" name="NAME_HERE" requireSSL="false" timeout="60" domain=".blah.com" />
And I want to delete the "name" attribute altogether. I know I can do this to blank it:
<forms xmu:key="loginUrl" loginUrl="/redirecttosignin…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi, i want to use MSBuild to insert a custom xml element into web.config. After looking up online, i found such solution:
1) Store element in the .build file in projectextensions
<ProjectExtensions>
<CustomElement name="CustomElementName">
...
</CustomElement>
</ProjectExtensions>
2)…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am using CC.Net with MSBuild tasks to build an application that is composed of a number of solutions and projects. We are using the AssemblyInfo MSBuild Community task to update version info in AssemblyInfo.cs. Unfortunately the AllowPartiallyTrustedCallers attribute doesn't get in and the AssemblyInfo…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Can't figure out how to get the last part of
$(MSBuildProjectDirectory)
For example, if the value was "c:\development\projects\project_branch"
then, I want just the last part "project_branch".
Any ideas?
Thanks,
Sean
>>> More